home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 418 b | 30 lines | [TEXT/CWIE] |
- // AppleMenu.h
-
- #ifndef AppleMenu_h
- #define AppleMenu_h
-
- #ifndef Menu_h
- #include "Menu.h"
- #endif
- #ifndef PlainMenuItem_h
- #include "PlainMenuItem.h"
- #endif
- #ifndef Boasting_h
- #include "Boasting.h"
- #endif
- #ifndef AppleMenuBody_h
- #include "AppleMenuBody.h"
- #endif
-
- class AppleMenu: public Menu
- {
- private:
- PlainMenuItem<Boasting> boast;
- AppleMenuBody accessories;
-
- public:
- AppleMenu( ResourceID );
- };
-
- #endif
-